home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-04-19 | 588 b | 21 lines | [TEXT/MOSS] |
- function onLoadViewSource() {
- // Create and initialize the browser instance.
- createBrowserInstance();
-
- if ( appCore ) {
- appCore.isViewSource = true;
- appCore.setContentWindow(window.frames[0]);
- appCore.setWebShellWindow(window);
-
- // Get url whose source to view.
- var url = window.arguments[0];
-
- // Load the source (the app core will magically know what to do).
- appCore.loadUrl( url );
- } else {
- // Give up.
- alert( "Error creating browser instance\n" );
- }
-
- }
-